home *** CD-ROM | disk | FTP | other *** search
/ Explorer - Mosaic & Web / Explorer - Mosaic & Web.iso / urbstuff / unix / go < prev    next >
Encoding:
Text File  |  1994-06-21  |  496 b   |  15 lines

  1.  # Script "go" to start a gopher session
  2.  #
  3.  # The syntax is:
  4.  #              go [domain-name]
  5.  # If a domain name is specified the gopher session will start at that site,
  6.  # otherwise, the gopher session will start at the University of Minnesota
  7.  #
  8. cd gopher # change to directory gopher
  9. if test -z "$1"
  10.   then # There is no passed gopher site
  11.     gopher consultant.micro.umn.edu
  12.   else  # There is a passed gopher site
  13.     gopher $1
  14. fi # end if
  15. cd # change back to home directory